home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / dev / c / AFramev01.lha / AFramev01 / Include / 3dstatus.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-26  |  911 b   |  33 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. // 3dstatus.h
  3. //
  4. // Jeffry A Worth
  5. // November 10, 1995
  6. //////////////////////////////////////////////////////////////////////////////
  7.  
  8. #ifndef __3DSTATUS_HPP__
  9. #define __3DSTATUS_HPP__
  10.  
  11. //////////////////////////////////////////////////////////////////////////////
  12. // INCLUDES
  13. #include <string.h>
  14. #include "aframe:include/status.hpp"
  15. #include "aframe:include/panel.hpp"
  16.  
  17. //////////////////////////////////////////////////////////////////////////////
  18. // 3D Status Bar
  19.  
  20. class AF3DStatus : public AFStatus
  21. {
  22. public:
  23.   ~AF3DStatus();
  24.  
  25.   virtual char *ObjectType() { return "3DStatus"; };
  26.   virtual void Create(AFWindow* pwindow, AFRect *rect, ULONG id,
  27.                       UBYTE penDone, UBYTE penToGo);
  28.   AFPanel m_panel;
  29. };
  30.  
  31. //////////////////////////////////////////////////////////////////////////////
  32. #endif // __3DSTATUS_HPP__
  33.